#ifndef SINGLE
//  An adapted ObjectSpace example for use with SGI STL

#include <algo.h>
#include <iostream.h>

#ifdef MAIN
#define max1_test main
#endif
#endif
int max1_test(int, char**)
{
  cout<<"Results of max1_test:"<<endl;
#ifndef ACORN_CFRONT
  cout << STL_NAMESPACE::max(42, 100) << endl;
#else
  cout << max(42, 100) << endl;
#endif

  return 0;
}
